| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | /* global kirkiIcons */ |
||
| 9 | _.each( kirkiIcons.section, function( icon, sectionID ) { |
||
| 10 | |||
| 11 | // Add icons in list. |
||
| 12 | jQuery( '#accordion-section-' + sectionID + ' > h3' ).addClass( 'dashicons-before ' + icon ); |
||
| 13 | |||
| 14 | // Add icons on titles when a section is open. |
||
| 15 | jQuery( '#sub-accordion-section-' + sectionID + ' .customize-section-title > h3' ).append( '<span class="dashicons ' + icon + '" style="float:left;padding-right:.1em;padding-top:2px;"></span>' ); |
||
| 16 | } ); |
||
| 17 | |||
| 31 |